home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 28
/
Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso
/
Aminet
/
dev
/
e
/
kyz_obj.lha
/
test
/
catalog
/
helloworld.e
< prev
next >
Wrap
Text File
|
1998-10-18
|
536b
|
22 lines
OPT MODULE
MODULE 'class/catalog'
-> Generated automatically with FlexCat 2.0 from "helloworld.cd"
EXPORT OBJECT cat_helloworld OF catalog_obj; ENDOBJECT
EXPORT CONST MSG_HELLO=0
EXPORT CONST MSG_BYE=1
EXPORT PROC open(name=NIL, lang=NIL, locale=NIL) OF cat_helloworld
SUPER self.open(
IF name THEN name ELSE 'helloworld.catalog',
IF lang THEN lang ELSE 'english',
locale
)
SUPER self.def([
0, 'This is a test string for the world to see: HELLO WORLD!',
1, 'This is another test string: BYE!'
])
ENDPROC